home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / phones_1 / frmnamee.frm (.txt) < prev    next >
Visual Basic Form  |  1997-03-13  |  2KB  |  77 lines

  1. VERSION 4.00
  2. Begin VB.Form frmNameEntry 
  3.    Appearance      =   0  'Flat
  4.    BackColor       =   &H00C0C0C0&
  5.    BorderStyle     =   3  'Fixed Dialog
  6.    Caption         =   "High Score Entry"
  7.    ClientHeight    =   1530
  8.    ClientLeft      =   2550
  9.    ClientTop       =   3195
  10.    ClientWidth     =   4860
  11.    ControlBox      =   0   'False
  12.    BeginProperty Font 
  13.       name            =   "MS Sans Serif"
  14.       charset         =   0
  15.       weight          =   700
  16.       size            =   8.25
  17.       underline       =   0   'False
  18.       italic          =   0   'False
  19.       strikethrough   =   0   'False
  20.    EndProperty
  21.    ForeColor       =   &H80000008&
  22.    Height          =   1935
  23.    Left            =   2490
  24.    LinkTopic       =   "Form4"
  25.    MaxButton       =   0   'False
  26.    MinButton       =   0   'False
  27.    ScaleHeight     =   1530
  28.    ScaleWidth      =   4860
  29.    Top             =   2850
  30.    Width           =   4980
  31.    Begin VB.CommandButton cmdOK 
  32.       Appearance      =   0  'Flat
  33.       BackColor       =   &H80000005&
  34.       Caption         =   "OK"
  35.       Height          =   375
  36.       Left            =   1608
  37.       TabIndex        =   2
  38.       Top             =   1008
  39.       Width           =   1485
  40.    End
  41.    Begin VB.TextBox txtName 
  42.       Appearance      =   0  'Flat
  43.       Height          =   345
  44.       Left            =   2148
  45.       TabIndex        =   1
  46.       Top             =   408
  47.       Width           =   2535
  48.    End
  49.    Begin VB.Label Label1 
  50.       Appearance      =   0  'Flat
  51.       BackColor       =   &H80000005&
  52.       BackStyle       =   0  'Transparent
  53.       Caption         =   "Enter First Name:"
  54.       BeginProperty Font 
  55.          name            =   "MS Sans Serif"
  56.          charset         =   0
  57.          weight          =   400
  58.          size            =   9.75
  59.          underline       =   0   'False
  60.          italic          =   0   'False
  61.          strikethrough   =   0   'False
  62.       EndProperty
  63.       ForeColor       =   &H80000008&
  64.       Height          =   252
  65.       Left            =   336
  66.       TabIndex        =   0
  67.       Top             =   504
  68.       Width           =   1740
  69.    End
  70. Attribute VB_Name = "frmNameEntry"
  71. Attribute VB_Creatable = False
  72. Attribute VB_Exposed = False
  73. Option Explicit
  74. Private Sub cmdOK_Click()
  75. frmNameEntry.Hide
  76. End Sub
  77.